home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / lh211src.zip / TYPEDEF.H < prev    next >
C/C++ Source or Header  |  1990-09-30  |  395b  |  11 lines

  1. /***********************************************************
  2.     typedef.h
  3. ***********************************************************/
  4. #ifndef _TYPEDEF_H_
  5. #define _TYPEDEF_H_
  6. typedef unsigned char  uchar;   /*  8 bits */
  7. typedef unsigned int   uint;    /* 16 - 32 bits or more */
  8. typedef unsigned short ushort;  /* 16 bits */
  9. typedef unsigned long  ulong;   /* 32 bits or more */
  10. #endif
  11.